cgal/Old_Packages/Kernel_test/test/KernelCartesian/test_kernelC3.C

41 lines
1.1 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_kernelC3.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>
#include "../Kernel/include/CGAL/Precise_numbers.h"
#include <CGAL/Cartesian.h>
#include <CGAL/Quotient.h>
#include "../Kernel/include/CGAL/_test_3.C"
int
main()
{
typedef CGAL::Cartesian<CGAL::Quotient<Precise_integer> > Cls;
std::cout << "Testing 3d with Cartesian<Quotient<Precise_integer>> :";
std::cout << std::endl;
_test_3( Cls() );
return 0;
}