Skip to content
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

Optim cg #1521

Merged
merged 5 commits into from
Oct 29, 2013
Merged

Optim cg #1521

merged 5 commits into from
Oct 29, 2013

Commits on Sep 20, 2013

  1. Initial commit for Conjugate Gradient method

    Implementation is based on
    http://www.cs.cmu.edu/~quake-papers/painless-conjugate-gradient.pdf
    
    So far we only have basic interface and empty test. But it compiles at
    least.
    nailbiter committed Sep 20, 2013
    Configuration menu
    Copy the full SHA
    eb1333d View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2013

  1. Refined interface for Conjugate Gradient

    Some interface was refined (most notably, the method for returning
    Hessian was removed and the method for getting gradient was added as
    optional to base Solver::Function class) and basic code for
    setters/getters was added. Now is the time for the real work on an
    algorithm.
    nailbiter committed Sep 21, 2013
    Configuration menu
    Copy the full SHA
    581d454 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2013

  1. Finish implementing the Nonlinear Conjugate Gradient

    Now everything is prepared for the pull request.
    nailbiter committed Sep 28, 2013
    Configuration menu
    Copy the full SHA
    891bcd8 View commit details
    Browse the repository at this point in the history
  2. Minor fixes

    Fix failed builds that opencv's buildbot has got.
    nailbiter committed Sep 28, 2013
    Configuration menu
    Copy the full SHA
    3ac3ba0 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2013

  1. Added the copyright statements

    Added the copyrights missing in all files that required so.
    nailbiter committed Sep 30, 2013
    Configuration menu
    Copy the full SHA
    0324932 View commit details
    Browse the repository at this point in the history