-
-
Notifications
You must be signed in to change notification settings - Fork 482
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #32686: points_of_bounded_height for projective space is incorrect
The method for number fields iterates over the points of bounded height for each coordinate. This includes all the appropriate points, but includes some other points that are larger than the specified bound. {{{ B=3 K.<v>=QuadraticField(3) P.<x,y,z>=ProjectiveSpace(K,2) for Q in P.points_of_bounded_height(bound=B): if exp(Q.global_height()) > B+0.001: print(Q,exp(Q.global_height())) }}} See also #31400 URL: https://trac.sagemath.org/32686 Reported by: bhutz Ticket author(s): Jing Guo Reviewer(s): Alexander Galarraga, Ben Hutz
- Loading branch information
Showing
6 changed files
with
480 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.