Skip to content

Commit

Permalink
0.6.0 More Hybrid Approximation Schemes (#38)
Browse files Browse the repository at this point in the history
* make 2D default subspace method

* version bump

* add additional hybrid methods

* version bump

* fix flake

* increase tolerances for fletcher test

* fixup

* fix broyden methods

* fixups

* doc update

* fixup

* fixup

* add more tests

* fix flake

* fixup

* add/fix pragmas

* refactor broyden/bfgs/dfp, add references
  • Loading branch information
FFroehlich authored Oct 7, 2021
1 parent e60c8f3 commit 9b84343
Show file tree
Hide file tree
Showing 6 changed files with 670 additions and 272 deletions.
5 changes: 3 additions & 2 deletions fides/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@

# flake8: noqa
from .minimize import Optimizer
from .hessian_approximation import SR1, BFGS, DFP, HessianApproximation, \
HybridUpdate
from .hessian_approximation import (
SR1, BFGS, DFP, FX, HybridFixed, GNSBFGS, BB, BG, Broyden, PSB, SSM, TSSM
)
from .logging import create_logger
from .version import __version__
from .constants import Options, SubSpaceDim, StepBackStrategy, ExitFlag
Loading

0 comments on commit 9b84343

Please sign in to comment.