Huz
Bug with -a are not corrected
Bother, in that case I don't know what the problem is. If I get any other ideas I'll let you know.
Цитата:
Stopping two searches and starting them in a new version in one case went to count (hopefully further, not again, in the log "recover" and the running time continued to go on), the second does not start, swearing "could not apply_single(13, 73, 6)".
Yes, I have seen this happen too, my apologies that I didn't already fix it.
When this happens, you have the option of editing the last 305 line to remove just the prime power it is complaining about (which in this example would, I think, be
in the 13th position, counting from 0). So if the entry is "2.73^6", replace it with "2"; if the whole entry is "73^6", replace it with ".". If that is not enough to fix it, there may be a bigger problem; in that case please send me the log file. I suggest making a copy of the log file before editing in any case.
In certain cases when a new allocation is made, the function apply_single() decides that it can immediately process this; it then gives the same return value as when the allocation is invalid, to signal that no further processing is necessary. This happens mainly if after applying the allocation no more divisors are needed, and is therefore quite rare. When recovering a previous run, the code that tries to restore things to the previous state does not have a way to distinguish between "this was an error" and "this was fine, but I already dealt with it".