0a25daf47631b50eba9e29a7b2ff5509a51dfea9,scipy/interpolate/fitpack2.py,LSQUnivariateSpline,__init__,#LSQUnivariateSpline#Any#Any#Any#Any#Any#Any#Any#Any#,736
Before Change
if check_finite:
w_finite = np.isfinite(w).all() if w is not None else True
if (not np.isfinite(x).all() or not np.isfinite(y).all() or
not w_finite or not np.isfinite(t).all()):
raise ValueError("Input(s) must not contain NaNs or infs.")
if not np.all(diff(x) >= 0.0):
raise ValueError("x must be increasing")
// _data == x,y,w,xb,xe,k,s,n,t,c,fp,fpint,nrdata,ier
After Change
def __init__(self, x, y, t, w=None, bbox=[None]*2, k=3,
ext=0, check_finite=False):
x , y, w, bbox, self.ext = self.validate_input(x, y, w, bbox, k, None,
ext, check_finite)
if not np.all(diff(x) >= 0.0):
raise ValueError("x must be increasing")
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 6
Instances Project Name: scipy/scipy
Commit Name: 0a25daf47631b50eba9e29a7b2ff5509a51dfea9
Time: 2020-04-26
Author: asakai.amsl+github@gmail.com
File Name: scipy/interpolate/fitpack2.py
Class Name: LSQUnivariateSpline
Method Name: __init__
Project Name: scipy/scipy
Commit Name: 0a25daf47631b50eba9e29a7b2ff5509a51dfea9
Time: 2020-04-26
Author: asakai.amsl+github@gmail.com
File Name: scipy/interpolate/fitpack2.py
Class Name: InterpolatedUnivariateSpline
Method Name: __init__
Project Name: pymc-devs/pymc3
Commit Name: 9805354d3351e29731f07cf0ce2389db063b3de7
Time: 2013-03-15
Author: jsalvatier@gmail.com
File Name: pymc/tuning/starting.py
Class Name:
Method Name: find_MAP