Welcome to Cadabra Q&A, where you can ask questions and receive answers from other members of the community.
+1 vote

As in my previous questions, I have

f::Depends(r,\theta,\phi, vr, vtheta, vphi);

The following works ok:

exfr:= { fr = \partial_r{f} };

but

exfth:= { fth = \partial_\theta{f} };

makes the server go into some kind of infinite loop (i.e., consumes ~ 99% CPU). So I have to restart the kernel.

Similarly,

exfvth:= { fvth = \partial_vtheta{f} };

causes infinite looping in server.

Enclosing the \theta or vtheta in braces works ok, i.e.,

exfth:= { fth = \partial_{\theta}{f} };
in Bug reports by (450 points)

1 Answer

+1 vote

I guess you have your answer there: add braces. In general, Cadabra is less forgiving about not wrapping arguments in braces, so just do it always.

Cadabra should not hang of course, will investigate. I have opened an issue at https://github.com/kpeeters/cadabra2/issues/312.

by (82.5k points)
...