While running some of my buggy code using the Guess package, I got
spammed by many messages like so:
number of primes
100
number of primes
100
number of primes
100
number of primes
100
...
A little searching through the Fricas code base seems to indicate the
ModularHermitePade package as the culprit: in modhpsol.spad at line
1320 there's a logical branch that prints the messages:
https://github.com/fricas/fricas/blob/master/src/algebra/modhpsol.spad#L1320
It seems to me like the messages are a mere status report, so maybe
they aren't important enough to warrant spamming, maybe the lines
1320-1322 should just be removed? Not that I understand their purpose.
On the other hand, it's pretty strange how the messages seem to happen
nondeterministically: I've run the same guess calls with the same
parameters multiple times, but only now did I get any "number of
primes" message.
Thanks,
Neven