示例#1
0
int main() {
	test_constructor();
	test_operator_assign();
	test_comparison_operators();
	test_operator_index();
	test_operator_indexOf();
	return 0;
}
示例#2
0
int main()
{
  test_comparison_operators();

  // Quotient<MP_Float and Gmpzf>'s double ctor do not split the double
  // in integral parts.  So, not tested here.
#ifdef CGAL_USE_GMP
  test_double_ctor<CGAL::Gmpz>();
#endif
#ifdef CGAL_USE_GMPXX
  test_double_ctor<mpz_class>();
#endif
#ifdef CGAL_USE_LEDA
  test_double_ctor<leda_integer>();
#endif

  return 0;
}