Hi Folks,
I think I might be doing something wrong so any help would (as always) be appreciated.
The following code should produce answers that differ only in the use of a bar accent in the first expression. But the first expression returns \bar{A}^{a}_{a} \bar{A}^{b}_{b}
which is clearly wrong -- somehow the indices have migrated across factors in the product.
Am I using the \bar accent correctly?
Cheers,
Leo
{a,b,c,d#}::Indices(position=independent).
\bar{#}::Accent.
A_{a b}::Depends(\bar{#}).
A^{a b}::Depends(\bar{#}).
A_{a b}::Symmetric.
A^{a b}::Symmetric.
\bar{A}_{a b}::Symmetric.
\bar{A}^{a b}::Symmetric.
ex := \bar{A}_{a b} \bar{A}^{b a};
canonicalise (ex);
ex := A_{a b} A^{b a};
canonicalise (ex);