ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
142 lines
4.1 KiB
C
142 lines
4.1 KiB
C
/* tcosh -- test file for mpc_cosh.
|
|
|
|
Copyright (C) 2008, 2009, 2010, 2011, 2012, 2013 INRIA
|
|
|
|
This file is part of GNU MPC.
|
|
|
|
GNU MPC is free software; you can redistribute it and/or modify it under
|
|
the terms of the GNU Lesser General Public License as published by the
|
|
Free Software Foundation; either version 3 of the License, or (at your
|
|
option) any later version.
|
|
|
|
GNU MPC is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
|
|
more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with this program. If not, see http://www.gnu.org/licenses/ .
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include "mpc-tests.h"
|
|
|
|
static void
|
|
pure_real_argument (void)
|
|
{
|
|
/* cosh(x -i*0) = cosh(x) +i*0 if x<0 */
|
|
/* cosh(x -i*0) = cosh(x) -i*0 if x>0 */
|
|
/* cosh(x +i*0) = cosh(x) -i*0 if x<0 */
|
|
/* cosh(x -i*0) = cosh(x) +i*0 if x>0 */
|
|
mpc_t u;
|
|
mpc_t z;
|
|
mpc_t cosh_z;
|
|
|
|
mpc_init2 (z, 2);
|
|
mpc_init2 (u, 100);
|
|
mpc_init2 (cosh_z, 100);
|
|
|
|
/* cosh(1 +i*0) = cosh(1) +i*0 */
|
|
mpc_set_ui_ui (z, 1, 0, MPC_RNDNN);
|
|
mpfr_cosh (mpc_realref (u), mpc_realref (z), MPFR_RNDN);
|
|
mpfr_set_ui (mpc_imagref (u), 0, MPFR_RNDN);
|
|
mpc_cosh (cosh_z, z, MPC_RNDNN);
|
|
if (mpc_cmp (cosh_z, u) != 0 || mpfr_signbit (mpc_imagref (cosh_z)))
|
|
TEST_FAILED ("mpc_cosh", z, cosh_z, u, MPC_RNDNN);
|
|
|
|
/* cosh(1 -i*0) = cosh(1) -i*0 */
|
|
mpc_conj (z, z, MPC_RNDNN);
|
|
mpc_conj (u, u, MPC_RNDNN);
|
|
mpc_cosh (cosh_z, z, MPC_RNDNN);
|
|
if (mpc_cmp (cosh_z, u) != 0 || !mpfr_signbit (mpc_imagref (cosh_z)))
|
|
TEST_FAILED ("mpc_cosh", z, cosh_z, u, MPC_RNDNN);
|
|
|
|
/* cosh(-1 +i*0) = cosh(1) -i*0 */
|
|
mpc_neg (z, z, MPC_RNDNN);
|
|
mpc_cosh (cosh_z, z, MPC_RNDNN);
|
|
if (mpc_cmp (cosh_z, u) != 0 || !mpfr_signbit (mpc_imagref (cosh_z)))
|
|
TEST_FAILED ("mpc_cosh", z, cosh_z, u, MPC_RNDNN);
|
|
|
|
/* cosh(-1 -i*0) = cosh(1) +i*0 */
|
|
mpc_conj (z, z, MPC_RNDNN);
|
|
mpc_conj (u, u, MPC_RNDNN);
|
|
mpc_cosh (cosh_z, z, MPC_RNDNN);
|
|
if (mpc_cmp (cosh_z, u) != 0 || mpfr_signbit (mpc_imagref (cosh_z)))
|
|
TEST_FAILED ("mpc_cosh", z, cosh_z, u, MPC_RNDNN);
|
|
|
|
mpc_clear (cosh_z);
|
|
mpc_clear (z);
|
|
mpc_clear (u);
|
|
}
|
|
|
|
static void
|
|
pure_imaginary_argument (void)
|
|
{
|
|
/* cosh(+0 +i*y) = cos y +i*0*sin y */
|
|
/* cosh(-0 +i*y) = cos y -i*0*sin y */
|
|
mpc_t u;
|
|
mpc_t z;
|
|
mpc_t cosh_z;
|
|
|
|
mpc_init2 (z, 2);
|
|
mpc_init2 (u, 100);
|
|
mpc_init2 (cosh_z, 100);
|
|
|
|
/* cosh(+0 +i) = cos(1) + i*0 */
|
|
mpc_set_ui_ui (z, 0, 1, MPC_RNDNN);
|
|
mpfr_cos (mpc_realref (u), mpc_imagref (z), MPFR_RNDN);
|
|
mpfr_set_ui (mpc_imagref (u), 0, MPFR_RNDN);
|
|
mpc_cosh (cosh_z, z, MPC_RNDNN);
|
|
if (mpc_cmp (cosh_z, u) != 0 || mpfr_signbit (mpc_imagref (cosh_z)))
|
|
TEST_FAILED ("mpc_cosh", z, cosh_z, u, MPC_RNDNN);
|
|
|
|
/* cosh(+0 -i) = cos(1) - i*0 */
|
|
mpc_conj (z, z, MPC_RNDNN);
|
|
mpc_conj (u, u, MPC_RNDNN);
|
|
mpc_cosh (cosh_z, z, MPC_RNDNN);
|
|
if (mpc_cmp (cosh_z, u) != 0 || !mpfr_signbit (mpc_imagref (cosh_z)))
|
|
TEST_FAILED ("mpc_cosh", z, cosh_z, u, MPC_RNDNN);
|
|
|
|
/* cosh(-0 +i) = cos(1) - i*0 */
|
|
mpc_neg (z, z, MPC_RNDNN);
|
|
mpc_cosh (cosh_z, z, MPC_RNDNN);
|
|
if (mpc_cmp (cosh_z, u) != 0 || !mpfr_signbit (mpc_imagref (cosh_z)))
|
|
TEST_FAILED ("mpc_cosh", z, cosh_z, u, MPC_RNDNN);
|
|
|
|
/* cosh(-0 -i) = cos(1) + i*0 */
|
|
mpc_conj (z, z, MPC_RNDNN);
|
|
mpc_conj (u, u, MPC_RNDNN);
|
|
mpc_cosh (cosh_z, z, MPC_RNDNN);
|
|
if (mpc_cmp (cosh_z, u) != 0 || mpfr_signbit (mpc_imagref (cosh_z)))
|
|
TEST_FAILED ("mpc_cosh", z, cosh_z, u, MPC_RNDNN);
|
|
|
|
mpc_clear (cosh_z);
|
|
mpc_clear (z);
|
|
mpc_clear (u);
|
|
}
|
|
|
|
#define MPC_FUNCTION_CALL \
|
|
P[0].mpc_inex = mpc_cosh (P[1].mpc, P[2].mpc, P[3].mpc_rnd)
|
|
#define MPC_FUNCTION_CALL_REUSE_OP1 \
|
|
P[0].mpc_inex = mpc_cosh (P[1].mpc, P[1].mpc, P[3].mpc_rnd)
|
|
|
|
#include "data_check.tpl"
|
|
#include "tgeneric.tpl"
|
|
int
|
|
main (void)
|
|
{
|
|
test_start ();
|
|
|
|
data_check_template ("cosh.dsc", "cosh.dat");
|
|
|
|
tgeneric_template ("cosh.dsc", 2, 512, 7, 7);
|
|
|
|
/* FIXME: remove the following tests? (Now tested by tgeneric) */
|
|
pure_real_argument ();
|
|
pure_imaginary_argument ();
|
|
|
|
test_end ();
|
|
|
|
return 0;
|
|
}
|