1 /***************************************************************************
2  *                                                                         *
3  *   copyright : (C) 2004 The University of Toronto                        *
4  *                   netterfield@astro.utoronto.ca                         *
5 *                                                                         *
6  *   This program is free software; you can redistribute it and/or modify  *
7  *   it under the terms of the GNU General Public License as published by  *
8  *   the Free Software Foundation; either version 2 of the License, or     *
9  *   (at your option) any later version.                                   *
10  *                                                                         *
11  ***************************************************************************/
12 
13 #include "math_kst.h"
14 
15 namespace Kst {
16 #ifdef NAN
17 const double NOPOINT = NAN;
18 #else
19 const double NOPOINT = 0.0/0.0; // NaN
20 #endif
21 }
22 
23 // vim: ts=2 sw=2 et
24