Skip to content

Commit 6610aec

Browse files
committed
projective_space.py: Correct test result
1 parent 6b82f18 commit 6610aec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/sage/schemes/projective/projective_space.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1084,10 +1084,10 @@ def points_of_bounded_height(self, **kwds):
10841084
sage: K.<v> = QuadraticField(2)
10851085
sage: P.<x,y> = ProjectiveSpace(K, 1)
10861086
sage: sorted(list(P.points_of_bounded_height(bound=2)))
1087-
[(-v - 2 : 1), (-v - 2 : 2), (-v - 1 : 1), (-2 : 1), (-2 : 4), (-v : 1),
1088-
(-v : 2), (-1 : 1), (v - 2 : 1), (v - 2 : 2), (-v + 1 : 1), (0 : 1),
1089-
(v - 1 : 1), (-v + 2 : 1), (-v + 2 : 2), (1 : 0), (1 : 1), (v : 1),
1090-
(v : 2), (2 : 1), (2 : 4), (v + 1 : 1), (v + 2 : 1), (v + 2 : 2)]
1087+
[(-v - 2 : 1), (-v - 1 : 1), (-2 : 1), (-1/2*v - 1 : 1), (-v : 1), (-1 : 1),
1088+
(-1/2*v : 1), (v - 2 : 1), (-1/2 : 1), (-v + 1 : 1), (1/2*v - 1 : 1), (0 : 1),
1089+
(-1/2*v + 1 : 1), (v - 1 : 1), (1/2 : 1), (-v + 2 : 1), (1/2*v : 1), (1 : 0),
1090+
(1 : 1), (v : 1), (1/2*v + 1 : 1), (2 : 1), (v + 1 : 1), (v + 2 : 1)]
10911091
10921092
::
10931093

0 commit comments

Comments
 (0)