Re: [sage-devel] Re: internet tests failing

2019-03-16 Thread Dima Pasechnik
On Sat, Mar 16, 2019 at 12:26 AM Dima Pasechnik wrote: > > On Fri, Mar 15, 2019 at 10:17 PM Dima Pasechnik wrote: > > > > > > > > On Friday, March 15, 2019 at 5:58:15 PM UTC, John H Palmieri wrote: > >> > >> > >> > >> On Friday, March 15, 2019 at 3:31:33 AM UTC-7, Dima Pasechnik wrote: > >>> > >>

Re: [sage-devel] Re: internet tests failing

2019-03-16 Thread dimpase
On Sat, Mar 16, 2019 at 06:05:35AM -0700, kcrisman wrote: > This is all very helpful. Hopefully I'll not miss if there is a beta or rc > version of Sage implementing this - if I fix this with the script now, I > won't be able to test "vanilla"-ish Sage. well, to break it back it suffices to rem

Re: [sage-devel] Re: internet tests failing

2019-03-16 Thread kcrisman
This is all very helpful. Hopefully I'll not miss if there is a beta or rc version of Sage implementing this - if I fix this with the script now, I won't be able to test "vanilla"-ish Sage. -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To uns

Re: [sage-devel] Igraph's pagerank not working in my sage module

2019-03-16 Thread 'RAJAT MITTAL' via sage-devel
Sure On Sat 16 Mar, 2019, 4:59 PM Dima Pasechnik Yes, this segfaults on all the graphs I tried on Linux, but works on MacOS. > > No idea why, please open a trac ticket on this. > > On Sat, Mar 16, 2019 at 8:52 AM rajat.mittal.mat15 via sage-devel > wrote: > > > > I have recently installed igraph

Re: [sage-devel] Igraph's pagerank not working in my sage module

2019-03-16 Thread Dima Pasechnik
Yes, this segfaults on all the graphs I tried on Linux, but works on MacOS. No idea why, please open a trac ticket on this. On Sat, Mar 16, 2019 at 8:52 AM rajat.mittal.mat15 via sage-devel wrote: > > I have recently installed igraph using ./sage -i igraph and ./sage - i > python_igraph > I als

Re: [sage-devel] Re: Computing determinants of obviously singular matrices

2019-03-16 Thread Vincent Delecroix
Indeed the determinant code in matrix2.pyx is a huge mess. Some dispatch is unavoidable but many specialized matrix implement their own determinant function: matrix_complex_ball_dense.pyx matrix_double_dense.pyx matrix_gap.pyx matrix_integer_dense.pyx matrix_mod2_dense.pyx matrix_modn_sparse.pyx

Re: [sage-devel] Re: Computing determinants of obviously singular matrices

2019-03-16 Thread 'Martin R' via sage-devel
I think the problem is that it computes the characteristic polynomial and then takes the constant term. That seems a bit wasteful, no? c = self.charpoly(var, algorithm="df")[0] Martin Am Freitag, 15. März 2019 23:07:04 UTC+1 schrieb Dima Pasechnik: > > On Fri, Mar 15, 2019 at 02:59:05PM -0

Re: [sage-devel] how to log sage output for long running program

2019-03-16 Thread dimpase
On Fri, Mar 15, 2019 at 10:21:48PM -0700, 'Justin C. Walker' via sage-devel wrote: > > > On Mar 15, 2019, at 21:46 , Ai Bo wrote: > > > > I am running a long running program. I would like to log the output. > > I have tried: > > ../sage-8.6/sage test.sage > test.log & > > > > There is nothin