Page 1 of 1

SARAH 4.9.3 with Mathematica 11.0.1

Posted: 13. Dec 2016, 15:40
by TomSt
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:

Code: Select all

Off[Part::"pspec"];
Generator[group,dyn][a__Integer]=Normal[RepMatrices[SusynoForm[group],dyn]][[a]]; 
On[Part::"pspec"];
The warning occurs because it was renamed, changing it to:

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"];
should resolve the situation.

cheers,
Tom

Re: SARAH 4.9.3 with Mathematica 11.0.1

Posted: 20. Dec 2016, 12:18
by FStaub
Hi Tom,

thank you for the hint. I'll add it in the next version.

Cheers
Florian