-
Notifications
You must be signed in to change notification settings - Fork 255
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Acb theta v2 #2182
base: main
Are you sure you want to change the base?
Acb theta v2 #2182
Conversation
All right, I'm marking the PR as ready for review ! |
Hello Jean, and sorry for the delay! Is there anything specific that you'd like to have feedback on? |
else | ||
{ | ||
acb_inv(exp_inv, exp, prec); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the logic in this file correct, considering that the presumably faster acb_inv branch is not reached by tests?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for catching this ! I guess I was confused about what acb_rel_error_bits
does. On 1 +- 0.25, is it supposed to return -2 right?
Then the correct line should probably be || acb_rel_error_bits(exp) >= -0.75*prec
. The goal was to only trigger recomputing an exponential when acb_inv
would cause NaNs or large errors to appear.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think prefer to use acb_rel_accuracy_bits
here. So acb_rel_accuracy_bits(exp) <= 0.75 * prec
(or 0.25 * prec
? it's not entirely clear what cutoff was intended). Would be nice to have this function tested anyway.
No worries at all. I think the main questions I have are: do you think the interface looks OK? And is the documentation clear enough to follow what's going on? |
Yes, I think it looks very good.
Yes, I think the documentation is very good! I've not looked everything into super much detail, but I think the naming scheme and descriptions looks good so far! |
.. function:: int acb_theta_char_is_even(ulong ab, slong g) | ||
|
||
Returns true iff the characteristic `(a,b)` is even, i.e. `a^Tb` is divisible by 2. | ||
Returns true iff the characteristic `(a,b)` is even, i.e. `a^Tb` is |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Returns true iff the characteristic `(a,b)` is even, i.e. `a^Tb` is | |
Returns true iff the characteristic `(a,b)` is even, i.e. `a^T b` is |
for easier readability when reading in monospace
Partially applies the theta transformation formula to the given vector *th* | ||
for the symplectic matrix *mat* and stores the output in *res*. This omits | ||
the `\kappa`, determinant, and exponential factors from the formula. If | ||
*sqr* is nonzero (true), then replaces `\zeta_8` in the formula by `i` to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
*sqr* is nonzero (true), then replaces `\zeta_8` in the formula by `i` to | |
*sqr* is nonzero, then `\zeta_8` is replaced by `i` in the formula to |
After you feel like you've addressed everything, could you squash your commits? Something like 1 to 5 commits, depending on how separate the commits can be made and how much it makes sense to split them. (I guess you already know how to write commit messages, but here's how: Squash the you've selected into one commit, and make the title of the commit short but descriptive and written in imperative. Its description will probably be long in your case, and should be a detailed overview. This makes it easier for people to backtrack history, changes etc.)‘ |
Can you make it more clear, or direct me on how to compute theta functions for specific |
There are two possibilities:
The second option will be more efficient. Do you I should write a direct interface (also allowing for partial derivatives of an individual |
I think it would make sense to have both. If the user is only interested in one specific tuple, then perhaps a wrapper for And I believe these features should be present in the main section so that it is clear when reading the section "Main user functions". Does this sound reasonable? |
This PR looks fine to me assuming that the |
This is a thorough rewrite of the acb_theta module.
The major changes are the following:
I mark this as a draft pull request because there are still some todos during the coming week, including: