-
Notifications
You must be signed in to change notification settings - Fork 17
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
Minor improvements to scico.optimize
docs
#328
Conversation
Codecov Report
@@ Coverage Diff @@
## main #328 +/- ##
=======================================
Coverage 93.88% 93.88%
=======================================
Files 55 55
Lines 3451 3451
=======================================
Hits 3240 3240
Misses 211 211
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
scico/optimize/_ladmm.py
Outdated
@@ -217,7 +217,7 @@ def norm_primal_residual(self, x: Optional[Union[JaxArray, BlockArray]] = None) | |||
:code:`self.x`. | |||
|
|||
Returns: | |||
Current value of primal residual. | |||
Value of primal residual. |
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.
norm of the residual or the residual?
scico/optimize/_admm.py
Outdated
@@ -252,7 +252,7 @@ def norm_primal_residual(self, x: Optional[Union[JaxArray, BlockArray]] = None) | |||
current iterate :code:`self.x`. | |||
|
|||
Returns: | |||
Current value of primal residual. | |||
Value of primal residual. |
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.
norm of the residual or the residual?
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.
see comments
Minor improvements to
scico.optimize
docs.