SARAH 4.9.3 with Mathematica 11.0.1
Posted: 13. Dec 2016, 15:40
Hi Florian,
it seems like with the latest Mathematica version, there is alsways a warning Part::pkspec1 when doing Start[...]. This is due to line 450 in Package/GroupTheory/grouptheory.m, which says:
The warning occurs because it was renamed, changing it to:
should resolve the situation.
cheers,
Tom
it seems like with the latest Mathematica version, there is alsways a warning Part::pkspec1 when doing Start[...]. This is due to line 450 in Package/GroupTheory/grouptheory.m, which says:
Code: Select all
Off[Part::"pspec"];
Generator[group,dyn][a__Integer]=Normal[RepMatrices[SusynoForm[group],dyn]][[a]];
On[Part::"pspec"];
Code: Select all
Off[Part::"pkspec1"];
Off[Part::"pspec"];
Generator[group,dyn][a__Integer]=Normal[RepMatrices[SusynoForm[group],dyn]][[a]];
On[Part::"pspec"];
On[Part::"pkspec1"];
cheers,
Tom