Skip to content

Commit

Permalink
Fix index offset in find_point call for Schottky class
Browse files Browse the repository at this point in the history
  • Loading branch information
mmasdeu committed Dec 11, 2024
1 parent e6f1c03 commit 2f15e47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion darmonpoints/schottky.py
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ def _u_function(self, i, prec, a, naive=False):
"""
gamma = self._generators[i]
if a is None:
a = self.find_point(gamma, idx=i) # self.a_point()
a = self.find_point(gamma, idx=i+1) # self.a_point()
K = a.parent()
else:
a = self.base_ring()(1) * a
Expand Down

0 comments on commit 2f15e47

Please sign in to comment.