I am calling scipy.integrate.quad
about 500 times for different integrations (x and y values).
This takes a total of 46 seconds.
However, 19 seconds is used by _evaluate._check_bounds
alone and _prepare_x._asarray_validated
takes up another 11 seconds.
Can I somehow skip those checks and perform the same Operation in 16 seconds?