Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lmfdb/ecnf/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ def postprocess(self, row, info, query):
row["field_coeffs"] = poly

# Convert Weierstrass coefficients from string to a list of list of integers
Comment thread
edgarcosta marked this conversation as resolved.
Outdated
row['ainvs'] = [[ZZ(aj) for aj in ai.split(",")] for ai in row['ainvs'].split(";")]
row['ainvs'] = [[QQ(aj) for aj in ai.split(",")] for ai in row['ainvs'].split(";")]

return row

Expand Down
Loading