ncbifloat.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ncbifloat.h,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:08:08  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef NCBIFLOAT__H
  10. #define NCBIFLOAT__H
  11. /*  $Id: ncbifloat.h,v 1000.1 2004/06/01 19:08:08 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Author:  Andrei Gourianov
  37.  *
  38.  *      
  39.  */
  40. /// @file ncbifloat.h
  41. /// Floating-point support routines.
  42. /** @addtogroup Exception
  43.  *
  44.  * @{
  45.  */
  46. #include <ncbiconf.h>
  47. #if defined(NCBI_OS_MSWIN)
  48. #   include <float.h>
  49. #elif defined(HAVE_IEEEFP_H)
  50. #   include <ieeefp.h>
  51. #endif
  52. #if defined(NCBI_OS_MSWIN)
  53. /// Define value of isnan (Is Not A Number).
  54. ///
  55. /// Checks double-precision value for not a number (NaN).
  56. #   define isnan _isnan
  57. #elif defined(NCBI_OS_DARWIN)  &&  defined(MATH_ERRNO)  &&  !defined(isnan)
  58. /// Define value of isnan (Is Not A Number).
  59. ///
  60. /// <math.h> changed a lot between 10.1 and 10.2; the presence of
  61. /// MATH_ERRNO indicates 10.2, which needs this hack.
  62. #   define isnan __isnan
  63. #endif
  64. #if defined(NCBI_OS_MSWIN)
  65. /// Define value of finite (Is Finite).
  66. ///
  67. /// Checks whether given double-precision floating point value is finite
  68. #   define finite _finite
  69. #endif
  70. /* @} */
  71. /*
  72.  * ===========================================================================
  73.  * $Log: ncbifloat.h,v $
  74.  * Revision 1000.1  2004/06/01 19:08:08  gouriano
  75.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  76.  *
  77.  * Revision 1.8  2004/05/04 18:07:39  ucko
  78.  * Use configure's test for ieeefp.h rather than harcoding an incomplete
  79.  * list of platforms.
  80.  *
  81.  * Revision 1.7  2004/05/04 17:58:16  gouriano
  82.  * Not include ieeefp.h on Linux
  83.  *
  84.  * Revision 1.6  2004/05/04 17:05:58  gouriano
  85.  * Added definition of finite
  86.  *
  87.  * Revision 1.5  2003/08/23 14:53:52  siyan
  88.  * Documentation changes.
  89.  *
  90.  * Revision 1.4  2003/04/03 17:52:31  ucko
  91.  * Properly close doxygen end-group comment.
  92.  *
  93.  * Revision 1.3  2003/04/01 14:19:42  siyan
  94.  * Added doxygen support
  95.  *
  96.  * Revision 1.2  2003/02/14 15:48:44  ucko
  97.  * Add a workaround for Mac OS X 10.2, where <cmath> clobbers <math.h>'s
  98.  * #define of isnan but doesn't replace it with anything.
  99.  *
  100.  * Revision 1.1  2003/02/04 17:02:07  gouriano
  101.  * initial revision
  102.  *
  103.  *
  104.  * ==========================================================================
  105.  */
  106. #endif /* NCBIFLOAT__H */