Class GradientDescent

java.lang.Object
org.tweetyproject.math.opt.solver.Solver
org.tweetyproject.math.opt.solver.GradientDescent

public class GradientDescent extends Solver
This class implements the gradient descent method to find an optimum.
Author:
Matthias Thimm
  • Field Details

    • precision

      public double precision
      The precision of the approximation. The actual used precision depends on the number of variables.
  • Constructor Details

    • GradientDescent

      public GradientDescent(Map<Variable,Term> startingPoint)
      Creates a new gradient descent solver
      Parameters:
      startingPoint - the starting point
  • Method Details