I am getting a crash when I am running
SnapPy's https://github.com/3-manifolds/SnapPy test suite against SageMath
with the stack trace below.
I created several different conda environments, all with python 3.9.9, on
Mac OS 11.5.2 x86_64 and it seems to be related to the (cy)pari version.
That i
FWIW, upgrading to 9.5.rc4 *and disabling the use of system’s pari and
singular* gives the same symptoms. Possible suspect :
charpent@zen-book-flip:~$ sage -pip list | grep pari
cypari2 2.1.2
I’m way out of my depth here…
HTH,
Le samedi 29 janvier 2022 à 22:51:14 UTC+1
The promlem seems tolie wit (my use of) polynomial rings to compute the
eigenvectors. Manually, after executing
dims = M.dimensions()
if dims[0] != dims[1]: raise DomainError("Not a square matrix !")
dim = dims[0]
BR = M.base_ring()
try:
WR = BR.algebraic_closure()
except AttributeError:
Exactly the same using Google Chrome.
On Saturday, January 29, 2022 at 8:09:36 PM UTC dim...@gmail.com wrote:
> On Sat, Jan 29, 2022 at 8:05 PM 'Alan Stafford' via sage-support
> wrote:
> >
> > I only used Safari. Safari supports widgets at Cocalc so I can't think
> that it won't support them s
On Sat, Jan 29, 2022 at 8:05 PM 'Alan Stafford' via sage-support
wrote:
>
> I only used Safari. Safari supports widgets at Cocalc so I can't think that
> it won't support them should I run it locally. Interact has worked on
> previous versions of SageMath. I am hoping the Mac support team will l
On Sat, Jan 29, 2022 at 6:28 PM kcrisman wrote:
>
> Just for data points, which browsers did you try on this? Thanks for
> reporting.
for what's worth, the interact works on Linux with Firefox.
>
> On Friday, January 28, 2022 at 1:02:57 PM UTC-5 alan_thoma...@yahoo.co.uk
> wrote:
>>
>> Intera
Just for data points, which browsers did you try on this? Thanks for
reporting.
On Friday, January 28, 2022 at 1:02:57 PM UTC-5 alan_thoma...@yahoo.co.uk
wrote:
> Interact just calls the function but no Interact widgets appear.
>
> Example attached. It works at Cocalc.
>
--
You received this
Setup : Sage 9.5.rc1 running in Debian testing on core i7 + 16 GB RAM.
def test(Size=2, Ring=QQ):
from time import time as stime
with seed(0):
M = matrix(Ring, Size, Size, lambda u, v:Ring.random_element())
t0 = stime()
SL = M.eigenspaces_left(algebraic_multiplicity=True)