Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
float.h File Reference
#include <CGAL/basic.h>
#include <CGAL/tags.h>
#include <cmath>
#include <CGAL/IEEE_754_unions.h>
Include dependency graph for float.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

CGAL_BEGIN_NAMESPACE double to_double (float f)
 
Number_tag number_type_tag (float)
 
bool is_valid (float d)
 
bool is_finite (float d)
 
io_Operator io_tag (float)
 

Function Documentation

io_Operator io_tag ( float  )
inline

Definition at line 189 of file float.h.

190 { return io_Operator(); }
bool is_finite ( float  d)
inline

Definition at line 179 of file float.h.

References is_valid().

180 { return (d == d) && (is_valid(d-d)); }
const NT & d
bool is_valid(double d)
Definition: double.h:185

Here is the call graph for this function:

bool is_valid ( float  d)
inline

Definition at line 174 of file float.h.

175 { return (d == d); }
const NT & d
Number_tag number_type_tag ( float  )
inline

Definition at line 72 of file float.h.

73 { return Number_tag(); }
CGAL_BEGIN_NAMESPACE double to_double ( float  f)
inline

Definition at line 67 of file float.h.

68 { return (double)f; }