remove unused files

This commit is contained in:
Sylvain Pion 2003-08-27 08:17:24 +00:00
parent fe51fa8b01
commit 53ac4f4c7d
2 changed files with 0 additions and 88 deletions

View File

@ -1,46 +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 : Ieee_double.h
// revision : $Revision$
// revision_date : $Date$
// author(s) : Stefan Schirra <Stefan.Schirra@mpi-sb.mpg.de>
//
// coordinator : MPI, Saarbruecken
// ============================================================================
#include <iomanip>
union IEEE_fpst_double {
double a;
struct { unsigned sign : 1;
unsigned exp :11;
unsigned high :20;
unsigned low :32;
} b;
struct { unsigned H :32;
unsigned L :32;
} c;
};
void
show( IEEE_fpst_double* p)
{
std::cout << std::endl;
std::cout << std::hex << std::setw(8) << std::setfill('0') << p->c.H;
std::cout << ' ';
std::cout << std::hex << std::setw(8) << std::setfill('0') << p->c.L;
std::cout << std::endl;
}

View File

@ -1,42 +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 : Ieee_float.h
// revision : $Revision$
// revision_date : $Date$
// author(s) : Stefan Schirra <Stefan.Schirra@mpi-sb.mpg.de>
//
// coordinator : MPI, Saarbruecken
// ============================================================================
#include <iomanip>
union IEEE_fpst_float {
float a;
struct { unsigned sign : 1;
unsigned exp : 8;
unsigned high :23;
} b;
struct { unsigned L :32;
} c;
};
void
show( IEEE_fpst_float* p)
{
std::cout << std::endl;
std::cout << std::hex << std::setw(8) << std::setfill('0') << p->c.L;
std::cout << std::endl;
}