Blame tests/cxx/t-mix.cc

Packit 5c3484
/* Test legality of conversion between the different mp*_class
Packit 5c3484
Packit 5c3484
Copyright 2011 Free Software Foundation, Inc.
Packit 5c3484
Packit 5c3484
This file is part of the GNU MP Library test suite.
Packit 5c3484
Packit 5c3484
The GNU MP Library test suite is free software; you can redistribute it
Packit 5c3484
and/or modify it under the terms of the GNU General Public License as
Packit 5c3484
published by the Free Software Foundation; either version 3 of the License,
Packit 5c3484
or (at your option) any later version.
Packit 5c3484
Packit 5c3484
The GNU MP Library test suite is distributed in the hope that it will be
Packit 5c3484
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 5c3484
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
Packit 5c3484
Public License for more details.
Packit 5c3484
Packit 5c3484
You should have received a copy of the GNU General Public License along with
Packit 5c3484
the GNU MP Library test suite.  If not, see https://www.gnu.org/licenses/.  */
Packit 5c3484
Packit 5c3484
#include "config.h"
Packit 5c3484
Packit 5c3484
#include "gmp.h"
Packit 5c3484
#include "gmpxx.h"
Packit 5c3484
#include "gmp-impl.h"
Packit 5c3484
#include "tests.h"
Packit 5c3484
Packit 5c3484
int f_z  (mpz_class){return 0;}
Packit 5c3484
int f_q  (mpq_class){return 1;}
Packit 5c3484
int f_f  (mpf_class){return 2;}
Packit 5c3484
int f_zq (mpz_class){return 0;}
Packit 5c3484
int f_zq (mpq_class){return 1;}
Packit 5c3484
int f_zf (mpz_class){return 0;}
Packit 5c3484
int f_zf (mpf_class){return 2;}
Packit 5c3484
int f_qf (mpq_class){return 1;}
Packit 5c3484
int f_qf (mpf_class){return 2;}
Packit 5c3484
int f_zqf(mpz_class){return 0;}
Packit 5c3484
int f_zqf(mpq_class){return 1;}
Packit 5c3484
int f_zqf(mpf_class){return 2;}
Packit 5c3484
Packit 5c3484
void
Packit 5c3484
check (void)
Packit 5c3484
{
Packit 5c3484
  mpz_class z=42;
Packit 5c3484
  mpq_class q=33;
Packit 5c3484
  mpf_class f=18;
Packit 5c3484
Packit 5c3484
  ASSERT_ALWAYS(f_z  (z)==0); ASSERT_ALWAYS(f_z  (-z)==0);
Packit 5c3484
  ASSERT_ALWAYS(f_q  (z)==1); ASSERT_ALWAYS(f_q  (-z)==1);
Packit 5c3484
  ASSERT_ALWAYS(f_q  (q)==1); ASSERT_ALWAYS(f_q  (-q)==1);
Packit 5c3484
  ASSERT_ALWAYS(f_f  (z)==2); ASSERT_ALWAYS(f_f  (-z)==2);
Packit 5c3484
  ASSERT_ALWAYS(f_f  (q)==2); ASSERT_ALWAYS(f_f  (-q)==2);
Packit 5c3484
  ASSERT_ALWAYS(f_f  (f)==2); ASSERT_ALWAYS(f_f  (-f)==2);
Packit 5c3484
  ASSERT_ALWAYS(f_zq (z)==0);
Packit 5c3484
  ASSERT_ALWAYS(f_zq (q)==1); ASSERT_ALWAYS(f_zq (-q)==1);
Packit 5c3484
  ASSERT_ALWAYS(f_zf (z)==0);
Packit 5c3484
  ASSERT_ALWAYS(f_zf (f)==2); ASSERT_ALWAYS(f_zf (-f)==2);
Packit 5c3484
  ASSERT_ALWAYS(f_qf (q)==1);
Packit 5c3484
  ASSERT_ALWAYS(f_qf (f)==2); ASSERT_ALWAYS(f_qf (-f)==2);
Packit 5c3484
  ASSERT_ALWAYS(f_zqf(z)==0);
Packit 5c3484
  ASSERT_ALWAYS(f_zqf(q)==1);
Packit 5c3484
  ASSERT_ALWAYS(f_zqf(f)==2); ASSERT_ALWAYS(f_zqf(-f)==2);
Packit 5c3484
Packit 5c3484
  ASSERT_ALWAYS(f_zqf(mpz_class(z))==0); ASSERT_ALWAYS(f_zqf(mpz_class(-z))==0);
Packit 5c3484
  ASSERT_ALWAYS(f_zqf(mpz_class(q))==0); ASSERT_ALWAYS(f_zqf(mpz_class(-q))==0);
Packit 5c3484
  ASSERT_ALWAYS(f_zqf(mpz_class(f))==0); ASSERT_ALWAYS(f_zqf(mpz_class(-f))==0);
Packit 5c3484
  ASSERT_ALWAYS(f_zqf(mpq_class(z))==1); ASSERT_ALWAYS(f_zqf(mpq_class(-z))==1);
Packit 5c3484
  ASSERT_ALWAYS(f_zqf(mpq_class(q))==1); ASSERT_ALWAYS(f_zqf(mpq_class(-q))==1);
Packit 5c3484
  ASSERT_ALWAYS(f_zqf(mpq_class(f))==1); ASSERT_ALWAYS(f_zqf(mpq_class(-f))==1);
Packit 5c3484
  ASSERT_ALWAYS(f_zqf(mpf_class(z))==2); ASSERT_ALWAYS(f_zqf(mpf_class(-z))==2);
Packit 5c3484
  ASSERT_ALWAYS(f_zqf(mpf_class(q))==2); ASSERT_ALWAYS(f_zqf(mpf_class(-q))==2);
Packit 5c3484
  ASSERT_ALWAYS(f_zqf(mpf_class(f))==2); ASSERT_ALWAYS(f_zqf(mpf_class(-f))==2);
Packit 5c3484
}
Packit 5c3484
Packit 5c3484
int
Packit 5c3484
main (void)
Packit 5c3484
{
Packit 5c3484
  tests_start();
Packit 5c3484
Packit 5c3484
  check();
Packit 5c3484
Packit 5c3484
  tests_end();
Packit 5c3484
  return 0;
Packit 5c3484
}