Skip to content

Commit

Permalink
Remove todo notes from docstring and code
Browse files Browse the repository at this point in the history
  • Loading branch information
bwohlberg committed Dec 7, 2021
1 parent da515b3 commit 891c909
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions scico/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,7 @@
# user license can be found in the 'LICENSE' file distributed with the
# package.

"""Optimization algorithms.
.. todo::
Add motivation for this module; when to choose over jax optimizers
"""
"""Optimization algorithms."""


from functools import wraps
Expand Down Expand Up @@ -125,11 +120,6 @@ def _join_real_imag(x: Union[JaxArray, BlockArray]) -> Union[JaxArray, BlockArra
return x[0] + 1j * x[1]


# TODO: Use jax to compute Hessian-vector products for use in Newton methods
# see https://jax.readthedocs.io/en/latest/notebooks/autodiff_cookbook.html#Hessian-vector-products-using-both-forward--and-reverse-mode
# for examples of constructing Hessians in jax


def minimize(
func: Callable,
x0: Union[JaxArray, BlockArray],
Expand Down

0 comments on commit 891c909

Please sign in to comment.