-
Notifications
You must be signed in to change notification settings - Fork 33
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
Describe optimization parameters in docs #615
Conversation
@garrison I went ahead and added some details but they are all in the docstring. I wonder if that is where we want to put it. |
Pull Request Test Coverage Report for Build 9356235036Warning: This coverage report may be inaccurate.This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.
Details
💛 - Coveralls |
It'd be nice to get the descriptions in the "Attributes" table on the page of the sphinx build. If you format the descriptions as comments that start with |
It does (f4a64b0). I did not get it to work with multiple sentences and/or multiple lines wasn't straightforward though so I kept everything in one sentence. |
Co-authored-by: Jim Garrison <[email protected]>
nevertheless returns the result of a greedy best first search, which gives an *upper-bound* on gamma. | ||
""" | ||
|
||
#: The seed to use when initializing Numpy random number generators in the best first search priority queue. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Optional suggestion
#: The seed to use when initializing Numpy random number generators in the best first search priority queue. | |
#: The seed to use when initializing Numpy random number generators in the best-first-search priority queue. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you - looks good to me! 🚀
* Describe optimization parameters in docs * update docstring * Fix typo in docstring Co-authored-by: Jim Garrison <[email protected]> --------- Co-authored-by: Jim Garrison <[email protected]> (cherry picked from commit d6a8654) # Conflicts: # circuit_knitting/cutting/automated_cut_finding.py
* Describe optimization parameters in docs (#615) * Describe optimization parameters in docs * update docstring * Fix typo in docstring Co-authored-by: Jim Garrison <[email protected]> --------- Co-authored-by: Jim Garrison <[email protected]> (cherry picked from commit d6a8654) # Conflicts: # circuit_knitting/cutting/automated_cut_finding.py * Resolve conflict --------- Co-authored-by: Ibrahim Shehzad <[email protected]> Co-authored-by: Jim Garrison <[email protected]>
Add explanation for the fields in
OptimizationParameters
, in particularmax_gamma
andmax_backjumps
.