summaryrefslogtreecommitdiff
path: root/tests/timag.c
diff options
context:
space:
mode:
authorPhilippe Theveny <philippe.theveny@laposte.net>2008-11-12 13:38:01 +0000
committerPhilippe Theveny <philippe.theveny@laposte.net>2008-11-12 13:38:01 +0000
commit1e4cd9e3869a98cf6054c7062cf984f830bcd07c (patch)
treefadac6b3273bfe52bafa1e8d2ff175e6ebb4cf88 /tests/timag.c
parentcbd7b052b200337baed2a757c51bed8ed1b6a3c6 (diff)
downloadmpc-git-1e4cd9e3869a98cf6054c7062cf984f830bcd07c.tar.gz
src/real.c, src/imag.c: New functions to access each parts of an mpc_t variable.
src/mpc.h: add mpc_real and mpc_imag functions, add mpc_realref, mpc_imagref macros. src/Makefile.am: add mpc_real and mpc_imag functions. doc/mpc.texi: Add description for mpc_real, mpc_imag, mpc_realref, and mpc_imagref. tests/treal.c, tests/timag.c: test file for new functions. tests/Makefile.am: add treal and timag tests. git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/mpc/trunk@288 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'tests/timag.c')
-rw-r--r--tests/timag.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/timag.c b/tests/timag.c
new file mode 100644
index 0000000..dd83c5f
--- /dev/null
+++ b/tests/timag.c
@@ -0,0 +1,36 @@
+/* timag -- test file for mpc_imag.
+
+Copyright (C) 2008 Philippe Th\'eveny
+
+This file is part of the MPC Library.
+
+The MPC Library 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 2.1 of the License, or (at your
+option) any later version.
+
+The MPC Library 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 the MPC Library; see the file COPYING.LIB. If not, write to
+the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+MA 02111-1307, USA. */
+
+#include "mpc-tests.h"
+
+int
+main (void)
+{
+ DECL_FC_FUNC (f, mpc_imag);
+
+ test_start ();
+
+ tgeneric (f, 2, 1024, 1, 4096);
+
+ test_end ();
+
+ return 0;
+}