#include "test_helpers.h"
#include "ulong_extras.h"
TEST_FUNCTION_START(n_factor_trial_partial, state)
{
slong ix, jx;
int result;
for (ix = 0; ix < 1000 * flint_test_multiplier(); ix++)
{
ulong n1, n2, prod, limit;
n_factor_t factors;
n_factor_init(&factors);
n1 = n_randtest_not_zero(state);
limit = n_sqrt(n1);
n2 = n_factor_trial_partial(&factors, n1, &prod, UWORD(10000), limit);
if (n1 != n2 * prod)
TEST_FUNCTION_FAIL("n1 = %wu, n2 = %wu, prod = %wu\n", n1, n2, prod);
for (jx = 0; jx < factors.num; jx++)
n2 *= n_pow(factors.p[jx], factors.exp[jx]);
result = (n1 == n2);
if (!result)
TEST_FUNCTION_FAIL("n1 = %wu, n2 = %wu\n", n1, n2, prod);
}
TEST_FUNCTION_END(state);
}