cgal/Old_Packages/Kernel_test/test/KernelSimpleCartesian/test_kernelS2.C

50 lines
1.3 KiB
C

// ============================================================================
//
// Copyright (c) 1999 The CGAL Consortium
//
// This software and related documentation is part of an INTERNAL release
// of the Computational Geometry Algorithms Library (CGAL). It is not
// intended for general use.
//
// ----------------------------------------------------------------------------
//
// release :
// release_date :
//
// file : test_kernelS2.C
// revision : $Revision$
// revision_date : $Date$
// author(s) : Stefan Schirra
//
//
// coordinator : MPI, Saarbruecken (<Stefan.Schirra@mpi-sb.mpg.de>)
// ============================================================================
#include <CGAL/basic.h>
#include <cassert>
#ifdef CGAL_USE_GMP
# include <CGAL/Gmpz.h>
typedef CGAL::Gmpz Precise_integer;
#else
# ifdef CGAL_USE_LEDA
# include <CGAL/leda_integer.h>
typedef leda_integer Precise_integer;
# endif // CGAL_USE_LEDA
#endif // CGAL_USE_GMP
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Quotient.h>
#include <CGAL/_test_2.C>
int
main()
{
typedef CGAL::Simple_cartesian<CGAL::Quotient<Precise_integer> > Cls;
std::cout << "Testing 2d with Simple_cartesian<Quotient<Precise_integer>> :";
std::cout << std::endl;
_test_2( Cls() );
return 0;
}