summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2021-03-16 12:51:50 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2021-03-16 12:51:50 +0000
commita9c41e4ab0e4021f8d69935075d4605a27581dd6 (patch)
treef298d1abdb09711579049b7a021407efd4246a7d /tests
parent04fbb76226eeac18e720d22f74eeb2ad6e5702ba (diff)
downloadmpfr-a9c41e4ab0e4021f8d69935075d4605a27581dd6.tar.gz
Replaced "intensional" by "intentional" in comments.
git-svn-id: https://scm.gforge.inria.fr/anonscm/svn/mpfr/trunk@14477 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests')
-rw-r--r--tests/tcheck.c2
-rw-r--r--tests/tmul.c2
-rw-r--r--tests/tsqr.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/tcheck.c b/tests/tcheck.c
index 1535ef48b..35cd07007 100644
--- a/tests/tcheck.c
+++ b/tests/tcheck.c
@@ -63,7 +63,7 @@ main (void)
max = 1000; /* Allows max 2^1000 bits for the exponent */
while (!mpfr_overflow_p () && max > 0)
{
- /* this call to mpfr_mul with identical arguments is intensional,
+ /* this call to mpfr_mul with identical arguments is intentional,
and should not be replaced by mpfr_sqr */
mpfr_mul (a, a, a, MPFR_RNDN);
if (!mpfr_check (a))
diff --git a/tests/tmul.c b/tests/tmul.c
index 95ca8cf92..442bd1c8a 100644
--- a/tests/tmul.c
+++ b/tests/tmul.c
@@ -582,7 +582,7 @@ check_regression (void)
mpfr_set_str (y, "-1.921fb54442d18469898cc51701b839a252049c1114cf98e804177d"
"4c76273644a29410f31c6809bbdf2a33679a748636600",
16, MPFR_RNDN);
- /* the following call to mpfr_mul with identical arguments is intensional */
+ /* the following call to mpfr_mul with identical arguments is intentional */
i = mpfr_mul (x, y, y, MPFR_RNDU);
if (mpfr_cmp_str (x, "2.77a79937c8bbcb495b89b36602306b1c2159a8ff834288a19a08"
"84094f1cda3dc426da61174c4544a173de83c2500f8bfea2e0569e3698",
diff --git a/tests/tsqr.c b/tests/tsqr.c
index 8f4bbabdc..65b92d380 100644
--- a/tests/tsqr.c
+++ b/tests/tsqr.c
@@ -70,7 +70,7 @@ check_random (mpfr_prec_t p)
RND_LOOP_NO_RNDF (r)
{
/* the following call to mpfr_mul with identical arguments is
- intensional (to compare with mpfr_sqr) */
+ intentional (to compare with mpfr_sqr) */
inexact1 = mpfr_mul (y, x, x, (mpfr_rnd_t) r);
inexact2 = mpfr_sqr (z, x, (mpfr_rnd_t) r);
if (mpfr_cmp (y, z))