0d0b86f0c15a40b566029a3d24123ea1f48eee8c,dit/math/tests/test_pmfops.py,,test_clamps,#,125
Before Change
def test_clamps():
d = np.array([.51, .48, .01])
out_ = (np.array([[4, 3, 0], [5, 4, 1]]),
np.array([ 0., 0.125, 0.25, 0.375, 0.5, 0.625, 0.75, 0.875, 1.]))
out = module.clamped_indexes(d, 2**3)
np.testing.assert_allclose(out[0], out_[0])
np.testing.assert_allclose(out[1], out_[1], rtol=1e-7, atol=1e-8)
After Change
def test_clamps():
d = np.array([.51, .48, .01])
locs = np.linspace(0, 1, 2**3+1)
out_ = np.array([[4, 3, 0], [5, 4, 1]])
out = module.clamped_indexes(d, locs)
np.testing.assert_allclose(out, out_)

In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: dit/dit
Commit Name: 0d0b86f0c15a40b566029a3d24123ea1f48eee8c
Time: 2014-10-29
Author: chebee7i@gmail.com
File Name: dit/math/tests/test_pmfops.py
Class Name:
Method Name: test_clamps
Project Name: librosa/librosa
Commit Name: cb82400b9fb1d3997ed02f616209485d5ef0005f
Time: 2015-08-31
Author: brian.mcfee@nyu.edu
File Name: tests/test_core.py
Class Name:
Method Name: test_piptrack
Project Name: etal/cnvkit
Commit Name: fff30b5d161bc5ad17af26af65704a03e1b4611d
Time: 2019-04-09
Author: etalevich@dnanexus.com
File Name: cnvlib/smoothing.py
Class Name:
Method Name: convolve_weighted