@@ -10,19 +10,19 @@ import (
10
10
// xxx rename CalGCayleyComplex?
11
11
// xxx genericise to use any group with comparable element type?
12
12
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 ]
24
24
congruenceSubgroupElements []ElementCalG
25
- observer CalGObserver
25
+ observer CalGObserver
26
26
}
27
27
28
28
type CalGObserver interface {
@@ -35,7 +35,7 @@ type CalGObserver interface {
35
35
}
36
36
37
37
type vertexWrapper struct {
38
- id int
38
+ id int
39
39
// when a new vertex is created (i.e. we compute a new group
40
40
// element that has not yet been seen, i.e. is not in the
41
41
// attendance map), we store the generator that was used to
@@ -98,15 +98,15 @@ func (E *CalGCayleyExpander) Expand() {
98
98
E .observer .EndVertices ()
99
99
}
100
100
// 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
+ // }
110
110
}
111
111
112
112
func (E * CalGCayleyExpander ) Complex () * ZComplex [ElementCalG ] {
@@ -139,12 +139,12 @@ func (E *CalGCayleyExpander) getOrSetVertex(u ElementCalG, genIndex int, uDepth
139
139
}
140
140
uId = len (E .attendance )
141
141
wrapper = vertexWrapper {
142
- id : uId ,
142
+ id : uId ,
143
143
generator : genIndex ,
144
144
}
145
145
E .attendance [u ] = wrapper
146
146
E .vertexBasis = append (E .vertexBasis , u )
147
-
147
+
148
148
// check for congruence subgroup element, unless we are doing a quotient
149
149
if E .modulus != nil && ! E .quotient && ! u .IsIdentity () {
150
150
c := u .Modf (* E .modulus )
@@ -361,12 +361,12 @@ func (E *CalGCayleyExpander) triangleToSortedVertexIndices(t ZTriangle[ElementCa
361
361
func (E * CalGCayleyExpander ) triangleBasis () []ZTriangle [ElementCalG ] {
362
362
if E .verbose {
363
363
log .Printf ("computing triangle basis" )
364
- }
364
+ }
365
365
//
366
366
// f g h
367
367
// u --- v --- w --- x
368
368
//
369
- basis := make ([]ZTriangle [ElementCalG ], 0 )
369
+ basis := make ([]ZTriangle [ElementCalG ], 0 )
370
370
triangleSet := make (map [ZTriangle [ElementCalG ]]any )
371
371
for _ , u := range E .vertexBasis {
372
372
u := u .(ElementCalG )
@@ -467,7 +467,10 @@ func NewZComplexElementCalGFromBasisFiles(vertexBasisFile, edgeBasisFile, triang
467
467
if verbose {
468
468
log .Printf ("reading triangle basis file %s" , triangleBasisFile )
469
469
}
470
- triangleBasis := ReadElementCalGTriangleFile (triangleBasisFile )
470
+ var triangleBasis []ZTriangle [ElementCalG ]
471
+ if triangleBasisFile != "" {
472
+ triangleBasis = ReadElementCalGTriangleFile (triangleBasisFile )
473
+ }
471
474
sortBases := false
472
475
return NewZComplex (vertexBasis , edgeBasis , triangleBasis , sortBases , verbose )
473
476
}
0 commit comments