Ask Your Question
0

var list with only one variable error

asked 5 years ago

ortollj gravatar image

updated 2 years ago

tmonteil gravatar image

Hi

SageMath 8.8 notebook OS=W10

why does it fail if L has only one variable ? :

L=['sd_1']
#L=['sd_1','sd_2']
varL=var(L)
show(varL)
Preview: (hide)

Comments

FWIW, when I run var(['x']) I get TypeError: unhashable type 'list'. Is this what you got? When reporting on a behavior please describe exactly the behavior you observed, and the behavior you expected instead.

Iguananaut gravatar imageIguananaut ( 5 years ago )

In any case, whether or not you got what I did, there seems to be a bug here in the treatment of var() on a single-item list or tuple.

Iguananaut gravatar imageIguananaut ( 5 years ago )

yes TypeError: unhashable type 'list' was the error I got

to avoid this error I did this little workaround:

if len(rL)==1 :
    rV=[var(rL[0])]
else :
    rV=var(rL)
cV=var(cL)
ortollj gravatar imageortollj ( 5 years ago )

1 Answer

Sort by » oldest newest most voted
2

answered 5 years ago

Iguananaut gravatar image

updated 5 years ago

It seems for now you'll have to do an ugly workaround like:

sage: var(L[0] if len(L) == 1 else L)

I have opened a ticket with a proposed fix to the bug: https://trac.sagemath.org/ticket/28353

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 5 years ago

Seen: 378 times

Last updated: Aug 14 '19