Re: [sage-support] Re: solving a linear system of GF(3) -- strange TypeError

2019-10-09 Thread Dima Pasechnik
This is now https://trac.sagemath.org/ticket/28586 It would be great not to have to do git bisect on this, anyone can point out to a suspect ticket? Thanks! On Thu, Oct 10, 2019 at 12:06 AM Robert Samal wrote: > Indeed it works in Sage 8.4. > Thanks! > > On Wednesday, October 9, 2019 at

Re: [sage-support] Re: solving a linear system of GF(3) -- strange TypeError

2019-10-09 Thread Robert Samal
Indeed it works in Sage 8.4. Thanks! On Wednesday, October 9, 2019 at 8:34:41 AM UTC-7, Dima Pasechnik wrote: > > This got broken in Sage 8.5. > (still works in 8.4) > > > > On Wed, Oct 9, 2019 at 6:09 AM David Joyner > wrote: > >> >> >> On Wed, Oct 9, 2019 at 1:33 AM Robert Samal > > wrote: >>

Re: [sage-support] Re: solving a linear system of GF(3) -- strange TypeError

2019-10-09 Thread Dima Pasechnik
This got broken in Sage 8.5. (still works in 8.4) On Wed, Oct 9, 2019 at 6:09 AM David Joyner wrote: > > > On Wed, Oct 9, 2019 at 1:33 AM Robert Samal > wrote: > >> Sorry, F=GF(3), I made my original example shorter and didn't read it >> properly. >> >> So the full problematic code is >> >>

Re: [sage-support] Re: solving a linear system of GF(3) -- strange TypeError

2019-10-09 Thread David Joyner
On Wed, Oct 9, 2019 at 1:33 AM Robert Samal wrote: > Sorry, F=GF(3), I made my original example shorter and didn't read it > properly. > > So the full problematic code is > > B=matrix(GF(3), 2,2,[1,0,1,0], sparse=True) > v=vector(GF(3), [1,1]) > B.solve_right(v) > > Yes. I can confirm it works

[sage-support] Re: solving a linear system of GF(3) -- strange TypeError

2019-10-08 Thread Robert Samal
Sorry, F=GF(3), I made my original example shorter and didn't read it properly. So the full problematic code is B=matrix(GF(3), 2,2,[1,0,1,0], sparse=True) v=vector(GF(3), [1,1]) B.solve_right(v) Thanks, Robert On Tuesday, October 8, 2019 at 5:17:59 PM UTC-7, Robert Samal wrote: > > I am