From 6935e4e247d13252012ac2ae47d6b57e170facd1 Mon Sep 17 00:00:00 2001 From: Sylvain Pion Date: Mon, 20 Nov 2000 18:43:33 +0000 Subject: [PATCH] - Removed. They are basically the equivalent of the basic types. --- Old_Packages/CLN/include/CGAL/CLN/cl_dfloat.h | 54 ------------------ Old_Packages/CLN/include/CGAL/CLN/cl_ffloat.h | 55 ------------------- Old_Packages/CLN/include/CGAL/CLN/cl_lfloat.h | 55 ------------------- Old_Packages/CLN/include/CGAL/CLN/cl_sfloat.h | 55 ------------------- 4 files changed, 219 deletions(-) delete mode 100644 Old_Packages/CLN/include/CGAL/CLN/cl_dfloat.h delete mode 100644 Old_Packages/CLN/include/CGAL/CLN/cl_ffloat.h delete mode 100644 Old_Packages/CLN/include/CGAL/CLN/cl_lfloat.h delete mode 100644 Old_Packages/CLN/include/CGAL/CLN/cl_sfloat.h diff --git a/Old_Packages/CLN/include/CGAL/CLN/cl_dfloat.h b/Old_Packages/CLN/include/CGAL/CLN/cl_dfloat.h deleted file mode 100644 index 3b8adc95171..00000000000 --- a/Old_Packages/CLN/include/CGAL/CLN/cl_dfloat.h +++ /dev/null @@ -1,54 +0,0 @@ -// ============================================================================ -// -// 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 : include/CGAL/cl_dfloat.h -// revision : $Revision$ -// revision_date : $Date$ -// package : CLN -// author(s) : Sylvain Pion -// -// coordinator : INRIA Sophia-Antipolis () -// -// ============================================================================ - -#ifndef CGAL_CL_DFLOAT_H -#define CGAL_CL_DFLOAT_H - -#include -#include -#include - -CGAL_BEGIN_NAMESPACE - -// Requirements. - -inline double to_double (const cl_DF &I) { return cl_double_approx(I); } - -// Specialized utilities. -namespace NTS { - -inline bool is_negative (const cl_DF &I) { return minusp(I); } -inline bool is_positive (const cl_DF &I) { return plusp(I); } -inline bool is_zero (const cl_DF &I) { return zerop(I); } -inline Comparison_result compare (const cl_DF &I, const cl_DF &J) -{ return Comparison_result(cl_compare(I,J)); } - -} // namespace NTS - -CGAL_END_NAMESPACE - -// #ifdef CGAL_INTERVAL_ARITHMETIC_H -// #include -// #endif - -#endif // CGAL_CL_DFLOAT_H diff --git a/Old_Packages/CLN/include/CGAL/CLN/cl_ffloat.h b/Old_Packages/CLN/include/CGAL/CLN/cl_ffloat.h deleted file mode 100644 index 8975069bcc0..00000000000 --- a/Old_Packages/CLN/include/CGAL/CLN/cl_ffloat.h +++ /dev/null @@ -1,55 +0,0 @@ -// ============================================================================ -// -// 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 : include/CGAL/cl_ffloat.h -// revision : $Revision$ -// revision_date : $Date$ -// package : CLN -// author(s) : Sylvain Pion -// -// coordinator : INRIA Sophia-Antipolis () -// -// ============================================================================ - -#ifndef CGAL_CL_FFLOAT_H -#define CGAL_CL_FFLOAT_H - -#include -#include -#include - -CGAL_BEGIN_NAMESPACE - -// Requirements. - -inline double to_double (const cl_FF &I) { return cl_double_approx(I); } - -// Specialized utilities. - -namespace NTS { - -inline bool is_negative (const cl_FF &I) { return minusp(I); } -inline bool is_positive (const cl_FF &I) { return plusp(I); } -inline bool is_zero (const cl_FF &I) { return zerop(I); } -inline Comparison_result compare (const cl_FF &I, const cl_FF &J) -{ return Comparison_result(cl_compare(I,J)); } - -} // namespace NTS - -CGAL_END_NAMESPACE - -// #ifdef CGAL_INTERVAL_ARITHMETIC_H -// #include -// #endif - -#endif // CGAL_CL_FFLOAT_H diff --git a/Old_Packages/CLN/include/CGAL/CLN/cl_lfloat.h b/Old_Packages/CLN/include/CGAL/CLN/cl_lfloat.h deleted file mode 100644 index abb7f7317f9..00000000000 --- a/Old_Packages/CLN/include/CGAL/CLN/cl_lfloat.h +++ /dev/null @@ -1,55 +0,0 @@ -// ============================================================================ -// -// 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 : include/CGAL/cl_lfloat.h -// revision : $Revision$ -// revision_date : $Date$ -// package : CLN -// author(s) : Sylvain Pion -// -// coordinator : INRIA Sophia-Antipolis () -// -// ============================================================================ - -#ifndef CGAL_CL_LFLOAT_H -#define CGAL_CL_LFLOAT_H - -#include -#include -#include - -CGAL_BEGIN_NAMESPACE - -// Requirements. - -inline double to_double (const cl_LF &I) { return cl_double_approx(I); } - -// Specialized utilities. - -namespace NTS { - -inline bool is_negative (const cl_LF &I) { return minusp(I); } -inline bool is_positive (const cl_LF &I) { return plusp(I); } -inline bool is_zero (const cl_LF &I) { return zerop(I); } -inline Comparison_result compare (const cl_LF &I, const cl_LF &J) -{ return Comparison_result(cl_compare(I,J)); } - -} // namespace NTS - -CGAL_END_NAMESPACE - -// #ifdef CGAL_INTERVAL_ARITHMETIC_H -// #include -// #endif - -#endif // CGAL_CL_LFLOAT_H diff --git a/Old_Packages/CLN/include/CGAL/CLN/cl_sfloat.h b/Old_Packages/CLN/include/CGAL/CLN/cl_sfloat.h deleted file mode 100644 index 2d694380393..00000000000 --- a/Old_Packages/CLN/include/CGAL/CLN/cl_sfloat.h +++ /dev/null @@ -1,55 +0,0 @@ -// ============================================================================ -// -// 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 : include/CGAL/cl_sfloat.h -// revision : $Revision$ -// revision_date : $Date$ -// package : CLN -// author(s) : Sylvain Pion -// -// coordinator : INRIA Sophia-Antipolis () -// -// ============================================================================ - -#ifndef CGAL_CL_SFLOAT_H -#define CGAL_CL_SFLOAT_H - -#include -#include -#include - -CGAL_BEGIN_NAMESPACE - -// Requirements. - -inline double to_double (const cl_SF &I) { return cl_double_approx(I); } - -// Specialized utilities. - -namespace NTS { - -inline bool is_negative (const cl_SF &I) { return minusp(I); } -inline bool is_positive (const cl_SF &I) { return plusp(I); } -inline bool is_zero (const cl_SF &I) { return zerop(I); } -inline Comparison_result compare (const cl_SF &I, const cl_SF &J) -{ return Comparison_result(cl_compare(I,J)); } - -} // namespace NTS - -CGAL_END_NAMESPACE - -// #ifdef CGAL_INTERVAL_ARITHMETIC_H -// #include -// #endif - -#endif // CGAL_CL_SFLOAT_H