summaryrefslogtreecommitdiff
path: root/tests/tsin_cos.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2005-08-18 17:03:17 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2005-08-18 17:03:17 +0000
commitd8782b82c961338b15ef888f0bc152566644a964 (patch)
tree6972f3706c8251eb2b814fb636519519b73bb1f5 /tests/tsin_cos.c
parentbab5aab404897a12fe1c87734ebf2aa270b9b73b (diff)
downloadmpfr-d8782b82c961338b15ef888f0bc152566644a964.tar.gz
Removed trailing spaces (better for future patches, as such spaces
are sometimes stripped). git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@3726 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tsin_cos.c')
-rw-r--r--tests/tsin_cos.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/tsin_cos.c b/tests/tsin_cos.c
index 441f3d5ad..a8ceeafbe 100644
--- a/tests/tsin_cos.c
+++ b/tests/tsin_cos.c
@@ -35,7 +35,7 @@ large_test (int prec, int N)
mpfr_init2 (c, prec);
mpfr_set_ui (x, 3, GMP_RNDN);
mpfr_sqrt (x, x, GMP_RNDN);
- for (i=0; i<N; i++)
+ for (i=0; i<N; i++)
mpfr_sin_cos (s, c, x, GMP_RNDN);
mpfr_out_str (stdout, 10, 0, s, GMP_RNDN); puts ("");
mpfr_clear (x);
@@ -44,7 +44,7 @@ large_test (int prec, int N)
}
static void
-check53 (const char *xs, const char *sin_xs, const char *cos_xs,
+check53 (const char *xs, const char *sin_xs, const char *cos_xs,
mp_rnd_t rnd_mode)
{
mpfr_t xx, s, c;
@@ -178,7 +178,7 @@ main(int argc, char *argv[])
}
/* worst case from PhD thesis of Vincent Lefe`vre: x=8980155785351021/2^54 */
- check53 ("4.984987858808754279e-1", "4.781075595393330379e-1",
+ check53 ("4.984987858808754279e-1", "4.781075595393330379e-1",
"8.783012931285841817e-1", GMP_RNDN);
check53 ("4.984987858808754279e-1", "4.781075595393329824e-1",
"8.783012931285840707e-1", GMP_RNDD);