Skip to content
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

Silly iota bug #66

Open
jvoight opened this issue Dec 5, 2023 · 2 comments
Open

Silly iota bug #66

jvoight opened this issue Dec 5, 2023 · 2 comments

Comments

@jvoight
Copy link
Collaborator

jvoight commented Dec 5, 2023

> _<x> := PolynomialRing(Rationals());
> f := x^5 - 3*x^4 + 5*x^3 + 27*x^2 + 18*x;
> K := SplittingField(f);
> X := HyperellipticCurve(f);
> geoendorep := GeometricEndomorphismRepresentation(X);

GeometricEndomorphismRepresentation(
    X: X
)
PeriodMatrix(
    X: X
)
In file "/Users/jvoight/Dropbox/github/CHIMP/endomorphisms/endomorphisms/magma/\
heuristic/Periods.m", line 100, column 33:
>> F := BaseRing(X); CC := Parent(F`iota);
                                   ^
Runtime error in `: Attribute 'iota' for this structure is valid but not 
assigned

I think we just need to assign the default complex numbers when the base ring is the rationals.

@edgarcosta
Copy link
Owner

edgarcosta commented Dec 5, 2023

geoendorep := HeuristicEndomorphismRepresentation(X : Geometric := true);

is the "Button".

Alternatively,

> _<x> := PolynomialRing(RationalsExtra(100));
> X := HyperellipticCurve(f);
> geoendorep := GeometricEndomorphismRepresentation(X);

I aim to " fix" the *Extra world at some point, but for now, it's not a high priority for me.

@jvoight
Copy link
Collaborator Author

jvoight commented Dec 5, 2023

Yes, not a high priority.

I also love heuristic buttons, but I think this should still work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants