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

Evaluating polynomial().list() on zero element is inconsistent among different precision types #25944

Open
sagetrac-varul mannequin opened this issue Jul 27, 2018 · 1 comment

Comments

@sagetrac-varul
Copy link
Mannequin

sagetrac-varul mannequin commented Jul 27, 2018

I would expect the result of the following six commands to be the same.

sage: ZqFM(4,names='a')(0).polynomial().list()
[]
sage: ZqCA(4,names='a')(0).polynomial().list()
[]
sage: ZqFP(4,names='a')(0).polynomial().list()
[]
sage: QqFP(4,names='a')(0).polynomial().list()
[]
sage: ZqCR(4,names='a')(0).polynomial().list()
[0]
sage: QqCR(4,names='a')(0).polynomial().list()
[0]

However, they are not. The ones where the precision model is capped-relative gives [0] instead of the expected [].

CC: @roed314 @xcaruso

Component: padics

Keywords: padicIMA, padicBordeaux

Issue created by migration from https://trac.sagemath.org/ticket/25944

@sagetrac-varul sagetrac-varul mannequin added this to the sage-8.4 milestone Jul 27, 2018
@sagetrac-varul sagetrac-varul mannequin added c: padics labels Jul 27, 2018
@sagetrac-varul sagetrac-varul mannequin changed the title Evaluating polynomial().list() on 0 element is inconsistent among different precision types Evaluating polynomial().list() on zero element is inconsistent among different precision types Jul 27, 2018
@roed314
Copy link
Contributor

roed314 commented Sep 7, 2019

Changed keywords from padicIMA to padicIMA, padicBordeaux

@mkoeppe mkoeppe removed this from the sage-8.4 milestone Dec 29, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants