~ubuntu-branches/ubuntu/oneiric/python-scipy/oneiric-proposed

« back to all changes in this revision

Viewing changes to scipy/special/c_misc/gammaincinv.c

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2011-04-06 21:26:25 UTC
  • mfrom: (9.2.1 sid)
  • Revision ID: james.westby@ubuntu.com-20110406212625-3izdplobqe6fzeql
Tags: 0.9.0+dfsg1-1
* New upstream release (Closes: #614407, #579041, #569008)
* Convert to dh_python2 (Closes: #617028)

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
/* Limits after which to issue warnings about non-convergence */
12
12
#define ALLOWED_ATOL (1e-306)
13
 
#define ALLOWED_RTOL (1e-9)
 
13
#define ALLOWED_RTOL (1e-6)
14
14
 
15
15
void scipy_special_raise_warning(char *fmt, ...);
16
16