cgal/Old_Packages/C3/test/Kernel/test_kernelC3.C

42 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 :
//
// source : test_programs.fw
// file : test_kernelC3.C
// revision : 2.0.5
// revision_date : 24 Mar 1999
// author(s) : Stefan Schirra <Stefan.Schirra@mpi-sb.mpg.de>
//
// coordinator : MPI, Saarbruecken
// ============================================================================
#ifndef CGAL_BASIC_H
#include <CGAL/basic.h>
#endif // CGAL_BASIC_H
#include <cassert>
#ifndef CGAL_CARTESIAN_H
#include <CGAL/Cartesian.h>
#endif // CGAL_CARTESIAN_H
#include <CGAL/leda_real.h>
#include <CGAL/_test_3.C>
int
main()
{
typedef CGAL::Cartesian<leda_real> Cls;
cout << "Testing 3d with Cartesian<leda_real> :" << endl;
_test_3( Cls() );
return 0;
}