Changeset ef6a512 in sasmodels for sasmodels/special.py


Ignore:
Timestamp:
Dec 1, 2017 6:21:44 PM (7 years ago)
Author:
Paul Kienzle <pkienzle@…>
Children:
0a9fcab
Parents:
13cf47a
Message:

order the code so dependent functions come after their dependencies

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/special.py

    rdb03406 ref6a512  
    206206from numpy import fmin, fmax, trunc, rint 
    207207from numpy import pi, nan, inf 
    208 NAN = nan 
    209 INFINITY = inf 
    210  
    211208from scipy.special import gamma as sas_gamma 
    212209from scipy.special import erf as sas_erf 
     
    220217# C99 standard math constants 
    221218M_PI, M_PI_2, M_PI_4, M_SQRT1_2, M_E = np.pi, np.pi/2, np.pi/4, np.sqrt(0.5), np.e 
     219NAN = nan 
     220INFINITY = inf 
    222221 
    223222# non-standard constants 
Note: See TracChangeset for help on using the changeset viewer.