These messages come from orb, and can be turned off via
SetInfoLevel(InfoOrb, 0);
In fact in PR #406 I inserted that into the classical naming code to avoid annoying warnings being printed when naming SO(+1,4,4):
# avoid warnings 'Giving up, Schreier tree is not shallow' (in general
# one shouldn't ignore this kind of warning but here we know which
# groups are input, and it is acceptable)
ol := InfoLevel(InfoOrb);
SetInfoLevel(InfoOrb, 0);
ord := RECOG.EstimateProjOrder(grp);
SetInfoLevel(InfoOrb, ol);
if ord mod 3600 <> 0 then # FIXME: Giving up, Schreier tree is not shallow
(dang, that FIXME comment was left in by accident)
Anyway: in that particular case I verified that the warning is harmless and didn't see another good way to avoid it.
The same technique can be used in other cases. But it should be done with care: sometime it might hide real issues, e.g. a stabilizer chain being used when it shouldn't be.
Therefore, if anyone sees these warnings, please leave a comment indicating where and how, esp. if you then proceed to disable it with the above technique.
These messages come from orb, and can be turned off via
In fact in PR #406 I inserted that into the classical naming code to avoid annoying warnings being printed when naming
SO(+1,4,4):(dang, that FIXME comment was left in by accident)
Anyway: in that particular case I verified that the warning is harmless and didn't see another good way to avoid it.
The same technique can be used in other cases. But it should be done with care: sometime it might hide real issues, e.g. a stabilizer chain being used when it shouldn't be.
Therefore, if anyone sees these warnings, please leave a comment indicating where and how, esp. if you then proceed to disable it with the above technique.