Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 522 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 522 Bytes

lineSearch

Line-Search algorithm

Perform 1D line-search analysis to determine optimum step length.

Contains the follwing functionallity

  1. Bracket local minimum i.e., determine upper and lower bounds of step-size
  2. Golden Sections, determine optimum step-size within upper and lower bounds
  3. Steady increase, determine optimum step-size within upper and lower bounds using the Strong Wolfe conditions
  4. Backtracking, determine step-size based on back-tracking approach using the Armijo-Goldstein condition