(*args, **kwargs)
| 55 | 'same as the number of given functions' |
| 56 | |
| 57 | def product_function(*args, **kwargs): |
| 58 | return np.prod([functions[i](*args, **kwargs)**exponents[i] |
| 59 | for i in range(len(exponents))], axis=0) |
| 60 | |
| 61 | return product_function |
| 62 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…