Class BfgsRootFinder


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

      Constructors 
      Constructor Description
      BfgsRootFinder​(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
      BfgsRootFinder​(Term function, java.util.Map<Variable,​Term> startingPoint)
      Creates a new root finder for the given starting point and the given function
    • Constructor Detail

      • BfgsRootFinder

        public BfgsRootFinder​(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
      • BfgsRootFinder

        public BfgsRootFinder​(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