Skip to content

Commit 710acc3

Browse files
committed
suggested detail
1 parent 387f823 commit 710acc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/modular/pollack_stevens/fund_domain.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1143,15 +1143,15 @@ def form_list_of_cusps(self):
11431143

11441144
# Initialize some lists
11451145

1146-
C = [QQ(-1), "?", QQ(0)]
1146+
C = [QQ(-1), "?", QQ.zero()]
11471147

11481148
# Initialize the list of cusps at the bottom of the fund. domain.
11491149
# The ? denotes that it has not yet been checked if more cusps need
11501150
# to be added between the surrounding cusps.
11511151

11521152
full_domain = False # Says that we are not done yet!
11531153

1154-
v = [False for _ in range(sP)]
1154+
v = [False] * sP
11551155
# This initializes a list indexed by P^1(Z/NZ) which keeps track of
11561156
# which right coset representatives we've found for Gamma_0(N)/SL_2(Z)
11571157
# thru the construction of a fundamental domain

0 commit comments

Comments
 (0)