3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-05 05:49:13 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-09-28 12:44:56 +03:00
parent 391880b6fc
commit b7eb21efed
3 changed files with 6 additions and 0 deletions

View file

@ -3094,6 +3094,9 @@ namespace upolynomial {
A.swap(D);
// D is of the form P_{j+1} * P_{j+2} * ... * P_k
j++;
if (j > 10000) {
display(verbose_stream(), A) << "\n";
}
}
TRACE(factor_bug, tout << "A: "; display(tout, A); tout << "\n";);
SASSERT(A.size() == 1 && m().is_one(A[0]));