14f8c06029dee29f6e3c801f69872c4ad426f79c,chaospy/quadrature/fejer.py,,quad_fejer,#Any#Any#Any#,56
Before Change
abscissas, weights = zip(*[_fejer(order_) for order_ in order])
abscissas = ((upper-lower)*combine(abscissas) + lower).T
weights = numpy.prod(combine(weights)*(upper-lower), -1)
assert len(abscissas) == dim
assert len(weights) == len(abscissas.T)
return abscissas, weights
def _fejer(order):
r
After Change
abscissas, weights = zip(*[_fejer(order_) for order_ in order])
return combine_quadrature(abscissas, weights, (lower, upper))
def _fejer(order):
r
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 17
Instances
Project Name: jonathf/chaospy
Commit Name: 14f8c06029dee29f6e3c801f69872c4ad426f79c
Time: 2019-08-10
Author: jonathf@gmail.com
File Name: chaospy/quadrature/fejer.py
Class Name:
Method Name: quad_fejer
Project Name: jonathf/chaospy
Commit Name: 14f8c06029dee29f6e3c801f69872c4ad426f79c
Time: 2019-08-10
Author: jonathf@gmail.com
File Name: chaospy/quadrature/clenshaw_curtis.py
Class Name:
Method Name: quad_clenshaw_curtis
Project Name: jonathf/chaospy
Commit Name: 14f8c06029dee29f6e3c801f69872c4ad426f79c
Time: 2019-08-10
Author: jonathf@gmail.com
File Name: chaospy/quadrature/gauss_legendre.py
Class Name:
Method Name: quad_gauss_legendre
Project Name: jonathf/chaospy
Commit Name: 14f8c06029dee29f6e3c801f69872c4ad426f79c
Time: 2019-08-10
Author: jonathf@gmail.com
File Name: chaospy/quadrature/fejer.py
Class Name:
Method Name: quad_fejer