Re: [sage-devel] Detected access to protected memory, also kwown as 'bus or segmentation fault'.

2017-03-10 Thread Peleg Michaeli
So all of this means that there's no need to report it on sage trac, but rather simply wait for maxima's fix? On Sunday, 15 January 2017 20:55:47 UTC+2, Nils Bruin wrote: > > This indeed seems to be a problem in maxima itself. With > > domain : complex; > limit( (1/(c*n^6))^(log(n)/log(2/3)), n,

Re: [sage-devel] Detected access to protected memory, also kwown as 'bus or segmentation fault'.

2017-01-15 Thread Nils Bruin
This indeed seems to be a problem in maxima itself. With domain : complex; limit( (1/(c*n^6))^(log(n)/log(2/3)), n, inf); in maxima, the same problem arises. Without "domain : complex" there is no problem, so it's an unfortunate interaction somewhere. -- You received this message because you a

Re: [sage-devel] Detected access to protected memory, also kwown as 'bus or segmentation fault'.

2017-01-15 Thread Jeremias Epperlein
The same happens for me on Sage 7.4 on Fedora, so definitely a bug. On Sun, Jan 15, 2017 at 3:27 PM, Peleg Michaeli wrote: > The following attempt: > > sage: var('c,n') > sage: (1/(c*n^6))^log(n,2/3).limit(n=infinity) > > Is ok (raises ValueError), but the following attempt: > > sage: var('c,n')

[sage-devel] Detected access to protected memory, also kwown as 'bus or segmentation fault'.

2017-01-15 Thread Peleg Michaeli
The following attempt: sage: var('c,n') sage: (1/(c*n^6))^log(n,2/3).limit(n=infinity) Is ok (raises ValueError), but the following attempt: sage: var('c,n') sage: f = (1/(c*n^6))^log(n,2/3) sage: f.limit(n=infinity) hangs a little while, the prints a lot of times ;;; ;;; Detected access to pr