Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pylint cleanup quad #610

Merged
merged 25 commits into from
Jan 19, 2022
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
88d0451
remove else-if-used
mmahsereci Jan 11, 2022
d4f46e9
removing disable missing return doc pylint in quad
mmahsereci Jan 11, 2022
0e6896b
undoing due to possible bug in sphinx
mmahsereci Jan 12, 2022
b0de464
multiple returns are currently renderend correctly without colon
mmahsereci Jan 12, 2022
4370a46
removing whitespace
mmahsereci Jan 12, 2022
b8ae629
enable missig function doc
mmahsereci Jan 12, 2022
c49f37e
resolving line-too-long
mmahsereci Jan 12, 2022
e792efd
enable missing raises doc pylint
mmahsereci Jan 12, 2022
f120ed7
enable pylint function-redefined
mmahsereci Jan 12, 2022
ee34b2a
enable pylint function-redefined in global run as well
mmahsereci Jan 12, 2022
78bf2b1
enabling some local pylint configs
mmahsereci Jan 12, 2022
13f21ac
Merge branch 'main' into mm-quad-pylint
mmahsereci Jan 13, 2022
fdcf210
Merge branch 'main' into mm-quad-pylint
mmahsereci Jan 19, 2022
3b99f5b
Update src/probnum/quad/_bayesquad.py
mmahsereci Jan 19, 2022
2b357c2
Update src/probnum/quad/_bayesquad.py
mmahsereci Jan 19, 2022
0796fce
Update src/probnum/quad/_bayesquad.py
mmahsereci Jan 19, 2022
f8114f8
Update src/probnum/quad/_bayesquad.py
mmahsereci Jan 19, 2022
c6cc310
Update src/probnum/quad/solvers/bayesian_quadrature.py
mmahsereci Jan 19, 2022
eab61c6
Update src/probnum/quad/solvers/bayesian_quadrature.py
mmahsereci Jan 19, 2022
07ca0ba
Update src/probnum/quad/solvers/bayesian_quadrature.py
mmahsereci Jan 19, 2022
eff4e84
Update src/probnum/quad/solvers/bayesian_quadrature.py
mmahsereci Jan 19, 2022
0223b06
Update src/probnum/quad/solvers/bayesian_quadrature.py
mmahsereci Jan 19, 2022
be270ed
Update src/probnum/quad/solvers/bayesian_quadrature.py
mmahsereci Jan 19, 2022
709301a
disable missing yield docs pylint
mmahsereci Jan 19, 2022
35f0d61
Merge branch 'main' into mm-quad-pylint
mmahsereci Jan 19, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
multiple returns are currently renderend correctly without colon
  • Loading branch information
mmahsereci committed Jan 12, 2022
commit b0de464ebb3eb4336b0ae70fcadb8df9a86cdbbc
8 changes: 4 additions & 4 deletions src/probnum/quad/solvers/bayesian_quadrature.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,15 +218,15 @@ def bq_iterator(

Yields
------
new_integral_belief : Normal
new_integral_belief
mmahsereci marked this conversation as resolved.
Show resolved Hide resolved
Updated belief about the integral.
new_nodes : numpy.ndarray
new_nodes
mmahsereci marked this conversation as resolved.
Show resolved Hide resolved
*shape=(n_new_eval, input_dim)* -- The new location(s) at which
``new_fun_evals`` are available found during the iteration.
new_fun_evals : numpy.ndarray
new_fun_evals
mmahsereci marked this conversation as resolved.
Show resolved Hide resolved
*shape=(n_new_eval,)* -- The function evaluations at the new locations
``new_nodes``.
new_bq_state : BQState
new_bq_state
Updated state of the Bayesian quadrature methods.
"""

Expand Down