summaryrefslogtreecommitdiff
path: root/tests/tui_div.c
diff options
context:
space:
mode:
authorenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2009-09-14 11:38:27 +0000
committerenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2009-09-14 11:38:27 +0000
commit7c9074b948eb558436ab4f18c271caa36f029b99 (patch)
treeb8fe883aa80ee89f2bef6bb1bd6b7eca8acc5f06 /tests/tui_div.c
parente4551563731580783306d9d0c32a7b2cee10d4f4 (diff)
downloadmpc-7c9074b948eb558436ab4f18c271caa36f029b99.tar.gz
ui_div.c: removed special case for real divisor, solves problems with
variable overlap and signed zeroes tui_div.c: removed straining printf git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@677 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'tests/tui_div.c')
-rw-r--r--tests/tui_div.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/tui_div.c b/tests/tui_div.c
index ae9c544..786d4b0 100644
--- a/tests/tui_div.c
+++ b/tests/tui_div.c
@@ -45,8 +45,6 @@ special (void)
mpfr_set_str (MPC_RE(a), "-1", 10, GMP_RNDN);
mpfr_set_str (MPC_IM(a), "-0", 10, GMP_RNDN);
mpc_ui_div (b, 0, a, MPC_RNDNN);
- mpc_out_str (stdout, 10, 0, b, MPC_RNDNN);
- printf ("\n");
if ((mpc_cmp_si_si (b, 0, 0) != 0) || (MPFR_SIGN (MPC_RE(b)) > 0)
|| (MPFR_SIGN (MPC_IM(b)) < 0))
{