Class LbfgsRootFinder


  • public class LbfgsRootFinder
    extends OptimizationRootFinder
    Implements the L-BFGS method to find zeros of a (multi-dimensional) function.
    Author:
    Matthias Thimm
    • Constructor Summary

      Constructors 
      Constructor Description
      LbfgsRootFinder​(java.util.List<Term> functions, java.util.Map<Variable,​Term> startingPoint)
      Creates a new root finder for the given starting point and the given (multi-dimensional) function
      LbfgsRootFinder​(Term function, java.util.Map<Variable,​Term> startingPoint)
      Creates a new root finder for the given starting point and the given function
    • Constructor Detail

      • LbfgsRootFinder

        public LbfgsRootFinder​(Term function,
                               java.util.Map<Variable,​Term> startingPoint)
        Creates a new root finder for the given starting point and the given function
        Parameters:
        function - a function
        startingPoint - the starting point
      • LbfgsRootFinder

        public LbfgsRootFinder​(java.util.List<Term> functions,
                               java.util.Map<Variable,​Term> startingPoint)
        Creates a new root finder for the given starting point and the given (multi-dimensional) function
        Parameters:
        functions - a list of functions
        startingPoint - the starting point