Elliot Ronaghan 50a865e15a Work around a weird pgi bug in test/unit/math.c
pgi fails to compile math.c, reporting that `-INFINITY` in `pt_norm_expected[]`
is a "Non-constant" expression. A simplified version of this failure is:

```c
#include <math.h>

static double inf1, inf2 = INFINITY;  // no complaints
static double inf3 = INFINITY;        // suddenly INFINITY is "Non-constant"

int main() { }
```

```sh
PGC-S-0074-Non-constant expression in initializer (t.c: 4)
```

pgi errors on the declaration of inf3, and will compile fine if that line is
removed. I've reported this bug to pgi, but in the meantime I just switched to
using (DBL_MAX + DBL_MAX) to work around this bug.
2016-09-26 11:08:45 -07:00
..
2016-05-07 16:55:36 -07:00
2015-07-23 13:56:25 -07:00
2016-05-03 17:18:34 -07:00
2016-04-17 13:44:59 -07:00
2016-04-17 13:44:59 -07:00
2015-07-09 16:32:49 -07:00
2014-10-10 18:19:20 -07:00
2016-02-21 21:39:05 -08:00
2016-04-11 02:15:42 -07:00
2015-01-25 21:21:35 -08:00
2014-01-17 15:40:52 -08:00
2014-01-03 16:35:03 -08:00
2014-01-03 16:35:03 -08:00
2016-02-23 18:09:25 -08:00
2015-08-07 00:51:11 -07:00
2015-07-23 13:56:25 -07:00
2016-04-12 12:39:02 -07:00
2016-02-19 20:29:06 -08:00
2016-05-07 16:55:36 -07:00
2016-04-17 13:44:59 -07:00