mirror of https://github.com/CGAL/cgal
43 lines
1.1 KiB
C
43 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_kernelCd.C
|
|
// revision : 2.2.2
|
|
// revision_date : 28 Sep 1999
|
|
// author(s) : Stefan Schirra <Stefan.Schirra@mpi-sb.mpg.de>
|
|
//
|
|
// coordinator : MPI, Saarbruecken
|
|
// ============================================================================
|
|
|
|
|
|
#include <CGAL/basic.h>
|
|
#include <iostream>
|
|
#include <strstream>
|
|
#include <cassert>
|
|
#include <CGAL/Cartesian_dynamic_d.h>
|
|
#include <CGAL/_test_d.h>
|
|
#include <CGAL/leda_real.h>
|
|
|
|
// typedef double FT;
|
|
typedef leda_real FT;
|
|
|
|
int
|
|
main()
|
|
{
|
|
typedef CGAL::Cartesian_dynamic_d<FT> Cls;
|
|
std::cout << "Testing dD with Cartesian<double> :" << std::endl;
|
|
_test_d( Cls() );
|
|
return 0;
|
|
}
|