X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=tests%2Ftest_I_sqrtp.cc;h=78e1b5871bf7a7cb09a8022ba341c3f96a630d89;hb=88ed5f76b2512cc36d00872d2769a49c05362fb8;hp=cc70dcfbdf1e301ef8555a3bff6de52431946dda;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/tests/test_I_sqrtp.cc b/tests/test_I_sqrtp.cc index cc70dcf..78e1b58 100644 --- a/tests/test_I_sqrtp.cc +++ b/tests/test_I_sqrtp.cc @@ -10,9 +10,9 @@ int test_I_sqrtp (int iterations) cl_I a = testrandom_I(); if (a >= 0) { cl_I w; - cl_boolean squarep = sqrtp(a,&w); + bool squarep = sqrtp(a,&w); cl_I correct_w; - cl_boolean correct_squarep = isqrt(a,&correct_w); + bool correct_squarep = isqrt(a,&correct_w); ASSERT1(squarep == correct_squarep, a); if (squarep) ASSERT1(w == correct_w, a);